.package-ex-popup {
  text-align: center;
  font-size: 0.98em;
  font-weight: 600;
  color: #0056b3;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
}

/* Tour Route Title */
.tour-route-title {
  font-size: 1.18em;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: -1em;
  margin-top: 0.5em;
  letter-spacing: 0.01em;
  text-align: left;
}

@media (max-width: 650px) {
  .tour-route-title {
    font-size: 1.07em;
    margin-bottom: 0.10em;
    margin-top: 0.4em;
    text-align: left;
  }
}

/* Green transparent faded background for tour route */
.tour-route {
  background: #e7f0fa6b;
  border-radius: 24px;
  padding: 1.2em 1.5em;
  /* margin: 0.5em auto -2.1em auto; */
  margin-top: 30px;
  font-size: 1em;
  color: #222;
  display: block;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  word-break: break-word;
  height: fit-content;
  text-align: left;
  box-shadow: none;
  max-width: 650px;
  width: 100%;
  min-width: 320px;
  transition: transform 0.22s cubic-bezier(.4, 0, .2, 1), box-shadow 0.22s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  flex: 1;
}

.tour-route:hover,
.tour-route:focus-within {
  /* transform: scale(1.01); */
  /* box-shadow: 0 8px 32px rgba(24,88,184,0.13); */
  z-index: 2;
}

.tour-route br {
  line-height: 2.0;
}

.route-point {
  margin-right: 0.4em;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}

.route-point i {
  color: #1858b8;
  margin-right: 0.2em;
  font-size: 1em;
}

.route-separator {
  margin: 0 0.5em;
  color: #1858b8;
  font-size: 1.2em;
  font-weight: bold;
  vertical-align: middle;
}

@media (max-width: 650px) {
  .tour-route {
    padding: 0.6em 0.4em;
    font-size: 1em;
  }

  .route-point,
  .route-separator {
    font-size: 1em;
    padding: 0.18em 0.7em;
    margin: 0.12em 0.1em;
  }
}

@media (max-width: 650px) {
  .tour-route {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6em 0.4em;
  }

  .tour-route .route-point,
  .tour-route .route-separator {
    font-size: 1em;
    padding: 0.18em 0.7em;
    margin: 0.12em 0.1em;
  }
}


/* Image Slider Styles - for reusable tour pages */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  background: #f6fafd;
}

.slider-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1);
  border-radius: 18px;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.0) 100%);
  color: #fff;
  padding: 2.5rem 2rem 2.2rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #0056b3;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.slider-dot.active {
  background: #0056b3;
  transform: scale(1.2);
  box-shadow: 0 0 8px #0056b3cc;
}

@media (max-width: 1200px) {
  .slider-image {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .slider-image {
    height: 350px;
  }

  .slider-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  .slider-image {
    height: 180px;
  }

  .slider-overlay {
    padding: 0.7rem 0.7rem;
  }

  .slider-title {
    font-size: 1rem;
  }
}

.slider-title {
  font-size: 2rem;
  font-weight: 700;
}

.slider-title-sm {
  font-size: 1.2rem;
}

.slider-days {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-arrow:hover {
  background: #0056b3;
}

.slider-arrow.left {
  left: 18px;
}

.slider-arrow.right {
  right: 18px;
}

@media (max-width: 900px) {
  .slider-image {
    height: 260px;
  }

  .slider-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  .slider-image {
    height: 140px;
  }

  .slider-overlay {
    padding: 0.7rem 0.7rem;
  }

  .slider-title {
    font-size: 1rem;
  }
}

/* Action buttons horizontal row */
.action-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.action-button,
.action-button:link,
.action-button:visited {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0056b3, #004385);
  color: #fff;
  font-weight: bold;
  font-size: 1.07em;
  cursor: pointer;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  margin-top: 0.6em;
}

.action-button:hover,
.action-button:focus {
  background: #004385;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 86, 179, 0.18);
}

.tour-page {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
  display: flex !important;
  flex-direction: column !important;
}

/* Row Layout for Tour Cost & Dates */
.tour-cost-dates-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.2em;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tour-cost-col,
.tour-dates-col {
  flex: 1 1 350px;
  /* min-width: 310px; */
  max-width: 540px;
}

@media (max-width: 900px) {
  .tour-cost-dates-row {
    flex-direction: column;
    gap: 1.2rem;
  }

  .tour-cost-col,
  .tour-dates-col {
    max-width: 100%;
  }
}

/* Itinerary Modern Styles */
.itinerary-day {
  background: #f5f9ff;
  border-radius: 12px;
  margin-bottom: 1.2em;
  padding: 1.25em 1.5em 1.05em 1.5em;
  display: flex;
  gap: 2rem;
  position: relative;
}

.itinerary-day .day-number {
  color: white;
  background-color: #0f53bf;
  padding: 15px;
  border-radius: 10px;
  /* width: 70px; */
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.title-arrival {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: rgb(0, 0, 0) !important;
}

.arrival-desc {
  color: #777 !important;
  margin: 0.55rem 0 !important;
}

.overnight-arrival {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.overnight-arrival p {
  color: #002d74 !important;
}

.itinerary-day h3 {
  color: #1858b8;
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.itinerary-day h3::before {
  content: "\f133";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #0b6bcf;
  font-size: 1.06em;
  margin-right: 0.3em;
}

.itinerary-day p {
  color: #232323;
  font-size: 1.04em;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 700px) {
  .itinerary-day {
    padding: 0.85em 0.7em 0.75em 0.7em;
  }

  .itinerary-day h3 {
    font-size: 1em;
  }

  .itinerary-day p {
    font-size: 0.98em;
  }
}

/* Tour Cost Table Styles */
.tour-dates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f9fbfd;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(0, 86, 179, 0.04);
  margin-bottom: 1.1em;
  overflow: hidden;
}

.tour-dates-table th,
.tour-dates-table td {
  padding: 0.95em 1.1em;
  text-align: left;
}

.tour-dates-table th {
  background: #eaf3fa;
  color: #1858b8;
  font-size: 1em;
  font-weight: 600;
  border-bottom: 1.5px solid #c2d8f6;
}

.tour-dates-table td {
  font-size: 1em;
  color: #222;
  border-bottom: 1px solid #e4eaf5;
}

.tour-dates-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 700px) {

  .tour-dates-table th,
  .tour-dates-table td {
    padding: 0.6em 0.4em;
    font-size: 0.93em;
  }
}

.tour-section-title {
  font-size: 1.35em;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 0.45em;
  letter-spacing: 0.01em;
}

.tour-cost-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f5f9ff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 86, 179, 0.06);
  margin-bottom: 0.7em;
  overflow: hidden;
}

.tour-cost-table th,
.tour-cost-table td {
  padding: 1.1em 1.2em;
  text-align: left;
}

.tour-cost-table th {
  background: #e6f0fa;
  color: #1858b8;
  font-size: 1.1em;
  font-weight: 600;
  border-bottom: 2px solid #c2d8f6;
}

.tour-cost-table td {
  font-size: 1.08em;
  color: #222;
  border-bottom: 1px solid #e4eaf5;
}

.tour-cost-table tr:last-child td {
  border-bottom: none;
}

.tour-cost-price {
  color: #0b6bcf;
  font-weight: 700;
  font-size: 1.17em;
  letter-spacing: 0.01em;
}

.tour-cost-notes {
  margin: 0 0 1em 1.2em;
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.07em;
  list-style-type: disc;
}

@media (max-width: 700px) {

  .tour-cost-table th,
  .tour-cost-table td {
    padding: 0.7em 0.5em;
    font-size: 0.96em;
  }

  .tour-section-title {
    font-size: 1.1em;
  }
}

/* Hero Section Two-Column Layout - Refined */
.tour-hero-section {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  /* margin-bottom: 2.5rem; */
  align-items: stretch;
  justify-content: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-left {
  flex: 1 1 0;
  min-width: 450px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-right {
  flex: 0 1 38%;
  min-width: 240px;
  max-width: 370px;
  /* height: fit-content; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6em;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 86, 179, 0.06);
  padding: 0.8rem 1.2em;
  align-items: center;
  font-size: 1.06em;
  justify-content: space-evenly;
}

.package-title {
  margin-bottom: 0.25em !important;
}

.package-toggle {
  margin-bottom: 0.25em !important;
}

.package-code-popup {
  margin-bottom: 0.35em !important;
}

.small-slider {
  max-width: 1000px;
  width: 100%;
}

.small-slider .slider-image {
  /* height: 450px; */
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.13);
}

.broucher-btn {
  margin-top: 1.2em;
  display: block;
  width: 100%;
  text-align: center;
}

.broucher-btn {
  margin-top: 1.2em;
  display: flex;
  width: 100%;
  justify-content: center;
}

.broucher-btn .action-button {
  min-width: 130px;
  font-size: 1em;
  padding: 0.7em 1.2em;
  margin: 0 auto;
  display: block;
  text-decoration: none !important;
}

.broucher-btn .action-button:focus,
.broucher-btn .action-button:hover,
.broucher-btn .action-button:active {
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .tour-hero-section {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 98vw;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .small-slider {
    max-width: 100%;
  }

  .small-slider .slider-image {
    height: 360px;
    width: 100%;
    object-fit: cover;
  }

  .hero-right {
    padding: 1.2em 0.7em 1.3em 0.7em;
  }
}

@media (max-width: 600px) {
  .small-slider .slider-image {
    height: 240px;
    width: 100%;
    object-fit: cover;
  }

  .hero-right {
    padding: 0.7em 0.2em 1em 0.2em;
    font-size: 0.97em;
  }

  .tour-hero-section {
    gap: 0.7rem;
  }
}


/* Tour Title Section */
.collapsible-block {
  margin-bottom: 2.2em;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.collapsible-header {
  width: 100%;
  background: #f3f8fd;
  border: 1.5px solid #b7d7f7;
  border-left: 7px solid #1761a0;
  border-radius: 10px 10px 0 0;
  padding: 1.1em 1.3em 1.1em 1.4em;
  font-size: 1.15em;
  color: #1761a0;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, border-color 0.18s;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(23, 97, 160, 0.06);
  z-index: 2;
  position: relative;
}

.collapsible-header:active,
.collapsible-header:focus {
  background: #e3f1fb;
  border-color: #1761a0;
}

.collapsible-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.4, 2, .6, 1);
  font-size: 1.25em;
  margin-left: 0.7em;
  color: #1761a0;
}

.collapsible-block.open .collapsible-arrow {
  transform: rotate(90deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  background: #f3f8fd;
  border: 1.5px solid #b7d7f7;
  border-top: none;
  border-radius: 0 0 10px 10px;
  transition: max-height 0.35s cubic-bezier(.4, 2, .6, 1), padding 0.25s;
  padding: 0 1.7em;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(23, 97, 160, 0.06);
  position: relative;
  z-index: 1;
  border-bottom: none !important;
}

.collapsible-block {
  margin-bottom: 2.2em;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-bottom: none !important;
}


.collapsible-block.open .collapsible-content {
  margin-top: 0;
  margin-left: -1.5px;
  margin-right: -1.5px;
  padding: 1.4em 2.4em 3.2em 2.5em;
  background: #f7fbff;
  border: 1.5px solid #b7d7f7;
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 18px 0 rgba(23, 97, 160, 0.09);
  /* max-height: 3500px; */


  min-height: 80px;
  /* overflow: auto; */
  box-sizing: border-box;
  transition: max-height 0.5s cubic-bezier(.4, 2, .6, 1), padding 0.25s, box-shadow 0.2s;
}



.collapsible-block.open .collapsible-content ul {
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.collapsible-block.open .collapsible-content ul li {
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-bottom: 0.5em;
}


.collapsible-header span {
  display: flex;
  align-items: center;
}

.tour-ac-bus-info {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.tour-title-content {
  text-align: center;
}

.tour-ac-bus-info h3 {
  color: #1761a0;
  font-size: 1.25em;
  margin-top: 0;
  margin-bottom: 1.1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid #b7d7f7;
  padding-bottom: 0.25em;
  background: linear-gradient(90deg, #e3f1fb 60%, transparent 100%);
}

.tour-ac-bus-info h3[style] {
  margin-top: 2.2em !important;
  color: #b05d1e !important;
  font-size: 1.13em !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1.5px solid #f9d5b5;
  padding-bottom: 0.18em;
  background: linear-gradient(90deg, #f9e8d5 60%, transparent 100%) !important;
}

.tour-duration {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.9;
}

.hero-section {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.action-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0056b3, #004385);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.action-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.3);
}

/* Tab Styles */
.tabs-container {
  border-radius: 0px 0px 16px 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  /* margin-top: 2rem; */
}

.tabs.tab-toggle .tab.active {
  background-color: #e7f0fa6b;
}

.tab-toggle {
  margin-top: 2rem;
  border-radius: 16px 16px 0px 0px;
}

.tabs {
  display: flex;
  background: #ffffff;
  /* padding: 0 1rem; */
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: #0056b3 #f1f1f1;
}


.tabs::-webkit-scrollbar {
  width: 8px;
}

.tabs::-webkit-scrollbar-thumb {
  background: #0056b3;
  border-radius: 8px;
}

.tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.tab {
  flex: 1;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 500;
}

.tab:last-child {
  border-right: none;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0056b3;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab.active {
  color: #0056b3;
}

.tab.active::after {
  width: 100%;
}

.tab-content {
  padding: 2.5rem;
  background: #ffffff;
  display: none;
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 16px 16px;
}

.tab-content.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tab {
    min-width: 100px;
  }

  .tab-content {
    padding: 2rem;
  }
}

/* Section Styles */
.tour-section {
  margin-top: 2rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 1rem;
}

.section-content {
  font-size: 1.1rem;
  color: #222;
}

/* Form Styles */
.enquiry-form {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 2rem;
}

.form-group label {
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.captcha-container {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.captcha-refresh {
  margin-top: 0rem;
  margin-right: 0.18rem;
}

.captcha-container input[type="text"] {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

#captcha-error {
  margin-top: 0.5rem;
  min-height: 1.2em;
  display: none;
}

.captcha-refresh {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0056b3;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  min-width: 90px;
  height: 38px;
  justify-content: center;
  cursor: pointer;
}

.captcha-container input[type="text"] {
  height: 44px;
  font-size: 1.1em;
  padding: 0 1rem;
  border-radius: 6px;
  border: 1px solid #b7c6d1;
  min-width: 140px;
}

.captcha-refresh {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0056b3;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, #0056b3, #004385);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 1rem 2.2rem;
  font-size: 1.1em;
  font-weight: 600;
  min-width: 160px;
  margin-top: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.11);
  display: inline-block;
}

.submit-btn:hover {
  background: #004385;
}

/* Breadcrumbs and Slider Styles */
.breadcrumbs {
  display: none !important;
}

.package-toggle-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  margin-top: 0.3rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.package-toggle {
  /* background: #e6f0fa; */
  border-radius: 50px;
  /* box-shadow: 0 4px 24px rgba(0,86,179,0.13); */
  display: flex;
  gap: 0.23rem;
  padding: 0.08em 0.12em;
  justify-content: center;
  align-items: center;
  transition: background 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
  margin-bottom: 0.5em;
}

.package-btn {
  font-size: 0.93rem;
  padding: 0.22em 0.65em;
}

.package-btn {
  font-size: 0.86rem;
  font-weight: 600;
  color: #0056b3;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 0.32em 0.85em;
  cursor: pointer;
  /* transition: background 0.32s cubic-bezier(.4,0,.2,1), color 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s; */
  margin: 0 0.05em;
  position: relative;
  z-index: 1;
  box-shadow: none;
}

.package-btn.active {
  background: linear-gradient(90deg, #0056b3 60%, #3a7bd5 100%);
  color: #fff;
  /* box-shadow: 0 4px 18px rgba(0,86,179,0.16); */
  transform: scale(1.07);
  z-index: 2;
}

.package-btn:not(.active):hover,
.package-btn:not(.active):focus {
  /* background: #d6eaff; */
  color: #003366;
  outline: none;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 2px 5px rgba(0, 87, 179, 0.041);
  z-index: 1;
}

@media (max-width: 600px) {
  .package-toggle {
    flex-direction: column;
    gap: 10px;
    padding: 0.09em 0.09em;
  }

  .package-btn {
    width: 100%;
    min-width: 90px;
    font-size: 0.93rem;
    padding: 0.45em 0.6em;
  }
}

.package-code-popup {
  font-size: 0.87rem;
  background: #0056b3;
  color: #fff;
  padding: 0.22em 0.78em;
  border-radius: 8px;
  font-weight: 600;
  margin: 0.39em 0 0 0;
  opacity: 1;
  /* transform: translateY(0); */
  /* transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1); */
  box-shadow: 0 4px 18px rgba(0, 86, 179, 0.10);
  display: inline-block;
  min-width: 70px;
  text-align: center;
}

/* .package-code-popup.hide {
    opacity: 0;
    transform: translateY(-8px);
} */
@media (max-width: 700px) {
  .package-toggle-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .package-code-popup {
    margin-left: 0;
    margin-top: 0.5em;
  }
}

.tour-hero-title h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #003366;
  margin-bottom: 0.5rem;
}

.tour-days {
  font-size: 1rem;
  color: #0056b3;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  overflow: hidden;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  background: #f6fafd;
  margin-bottom: 0 !important;
}

.slider-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1);
  border-radius: 18px;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.0) 100%);
  color: #fff;
  padding: 2.5rem 2rem 2.2rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #0056b3;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.slider-dot.active {
  background: #0056b3;
  transform: scale(1.2);
  box-shadow: 0 0 8px #0056b3cc;
}

@media (max-width: 1200px) {
  .slider-image {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .slider-image {
    height: 350px;
  }

  .slider-title {
    font-size: 1.2rem;
  }
}

/* --- Additional Slider Styles (expanded & merged) --- */
@media (max-width: 700px) {
  .slider-image {
    height: 180px;
  }

  .slider-overlay {
    padding: 0.7rem 0.7rem;
  }

  .slider-title {
    font-size: 1rem;
  }
}

.slider-title {
  font-size: 2rem;
  font-weight: 700;
}

.slider-title-sm {
  font-size: 1.2rem;
}

.slider-days {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-arrow:hover {
  background: #0056b3;
}

.slider-arrow.left {
  left: 18px;
}

.slider-arrow.right {
  right: 18px;
}

@media (max-width: 900px) {
  .slider-image {
    height: 260px;
  }

  .slider-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  .slider-image {
    height: 140px;
  }

  .slider-overlay {
    padding: 0.7rem 0.7rem;
  }

  .slider-title {
    font-size: 1rem;
  }
}

/* Action buttons horizontal row */
.action-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.action-button {
  flex: 0 1 auto;
  min-width: 120px;
}

/* Spacing between days in ITINERARY section */
.itinerary-day {
  margin-bottom: 2.2em;
}

.tour-info-black {
  color: #222 !important;
}

.overnight-arrival {
  display: flex;
}

#brochure-btn {
  position: fixed;
  z-index: 1000;
  width: 70px;
  height: 70px;
  bottom: 80px;
  right: 80px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 600px) {

  #brochure-btn img {
    height: 50px;
    width: 50px;
    bottom: 50px !important;
    right: 50px !important;
  }

  .tabs .tab {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 12px 0px;
    justify-content: center;
    min-width: auto;
  }

  #cost .tour-cost-dates-row .tour-dates-col {
    min-width: auto;
    max-width: auto;
    width: 100%;
  }

  .hero-right .tour-dates-col {
    min-width: auto;
    max-width: auto;
    width: 100%;
  }

  #itinerary {
    padding: 1rem;
  }

  .hero-right {
    padding: 1rem 2rem;
  }

  .itinerary-day .day-number {
    height: fit-content;
  }

  .arrival-desc {
    text-align: justify;
  }

  .collapsible-header {
    padding: 1rem;
    border-left: 3px solid #1761a0;
    border-radius: 10px;
  }


}

.breadcrumb-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .tour-page {
    padding: 1rem !important;
  }

  #package-tabs {
    margin-top: 1rem;
  }

  .tour-hero-section {
    gap: 1rem;
  }


}

#submitting{
  display: none;
}